home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************************
-
-
- *******************************************************************************/
-
- #include <stdio.h>
- #include <APlusPlus/utility/AttrList.h>
-
- //------------------------------------------------------------------------------
-
-
- main()
- {
- puts("AttrList2_test\n");
-
- AttrList a1(200,20,201,21,202,22,TAG_END);
- AttrList a2(200,200,300,30,301,31,302,32,TAG_END);
- puts("a1 = ");a1.print();
- puts("a2 = ");a2.print();
-
- a1.addAttrs(a2);
- puts("a1.addAttrs(a2)");
-
- puts("a1 = ");a1.print();
- puts("a2 = ");a2.print();
-
- }
-